home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / ifthenlist.e < prev    next >
Text File  |  2000-03-25  |  7KB  |  280 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class IFTHENLIST
  17.  
  18. inherit IF_GLOBALS;
  19.  
  20. creation make
  21.  
  22. feature {NONE}
  23.  
  24.    list: ARRAY[IFTHEN];
  25.  
  26.    current_type: TYPE;
  27.  
  28.    make(first: IFTHEN) is
  29.       require
  30.          first /= Void
  31.       do
  32.          !!list.with_capacity(4,1);
  33.      list.add_last(first);
  34.       ensure
  35.          list.first = first
  36.       end;
  37.  
  38. feature
  39.  
  40.    pretty_print is
  41.       local
  42.          i: INTEGER;
  43.       do
  44.          from
  45.             i := 1;
  46.          until
  47.             i > list.upper
  48.          loop
  49.             list.item(i).pretty_print;
  50.             i := i + 1;
  51.             if i <= list.upper then
  52.                fmt.indent;
  53.                fmt.keyword("elseif");
  54.             end;
  55.          end;
  56.       end;
  57.  
  58.    afd_check is
  59.       local
  60.          i: INTEGER;
  61.       do
  62.          from
  63.             i := list.upper;
  64.          until
  65.             i = 0
  66.          loop
  67.             list.item(i).afd_check;
  68.             i := i - 1;
  69.          end;
  70.       end;
  71.  
  72.    collect_c_tmp is
  73.       local
  74.          i: INTEGER;
  75.       do
  76.          from
  77.             i := list.upper;
  78.          until
  79.             i = 0
  80.          loop
  81.             list.item(i).collect_c_tmp;
  82.             i := i - 1;
  83.          end;
  84.       end;
  85.  
  86.    compile_to_c: INTEGER is
  87.          -- state 0: no printing done.
  88.          -- state 1: already print `non_static'.
  89.          -- state 2: end of list or previous `static_true'.
  90.       local
  91.          state, previous, i: INTEGER;
  92.       do
  93.          from
  94.             i := 1;
  95.          until
  96.             state = 2
  97.          loop
  98.             inspect
  99.                state
  100.             when 0 then
  101.                if i > list.upper then
  102.                   state := 2;
  103.                   Result := previous;
  104.                else
  105.                   previous := list.item(i).compile_to_c(false);
  106.                   inspect
  107.                      previous
  108.                   when non_static then
  109.                      state := 1;
  110.                   when static_false then
  111.                   when static_true then
  112.                      Result := static_true;
  113.                      state := 2;
  114.                   end;
  115.                end;
  116.             else -- 1
  117.                if i > list.upper then
  118.                   state := 2;
  119.                   inspect
  120.                      previous
  121.                   when static_true then
  122.                      Result := static_true;
  123.                   else
  124.                      Result := non_static;
  125.                   end;
  126.                else
  127.                   previous := list.item(i).compile_to_c(true);
  128.                   inspect
  129.                      previous
  130.                   when non_static then
  131.                   when static_false then
  132.                   when static_true then
  133.                      state := 2;
  134.                      Result := static_true;
  135.                   end;
  136.                end;
  137.             end;
  138.             i := i + 1;
  139.          end;
  140.       ensure
  141.          (<<static_true,static_false,non_static>>).fast_has(Result)
  142.       end;
  143.  
  144.    compile_to_jvm: INTEGER is
  145.       local
  146.          i: INTEGER;
  147.       do
  148.          from
  149.             Result := list.item(1).compile_to_jvm;
  150.             i := 2;
  151.          until
  152.             Result = static_true or else i > list.upper
  153.          loop
  154.             inspect
  155.                list.item(i).compile_to_jvm
  156.             when static_true then
  157.                Result := static_true
  158.             when static_false then
  159.                if Result = static_false then
  160.                else
  161.                   Result := non_static;
  162.                end;
  163.             else -- non_static :
  164.                Result := non_static;
  165.             end;
  166.             i := i + 1;
  167.          end;
  168.       ensure
  169.          (<<static_true,static_false,non_static>>).fast_has(Result)
  170.       end;
  171.  
  172.    use_current: BOOLEAN is
  173.       local
  174.          i: INTEGER;
  175.       do
  176.          from
  177.             i := 1;
  178.          until
  179.             i > list.upper or else Result
  180.          loop
  181.             Result := list.item(i).use_current;
  182.             i := i + 1;
  183.          end;
  184.       end;
  185.  
  186.    stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  187.       local
  188.          i: INTEGER;
  189.       do
  190.          from
  191.             Result := true;
  192.             i := 1;
  193.          until
  194.             not Result or else i > list.upper
  195.          loop
  196.             Result := list.item(i).stupid_switch(r);
  197.             i := i + 1;
  198.          end;
  199.       end;
  200.  
  201.    count: INTEGER is
  202.       do
  203.          Result := list.upper;
  204.       end;
  205.  
  206.    to_runnable(ct: TYPE): like Current is
  207.       require
  208.          ct /= Void
  209.       local
  210.          i: INTEGER;
  211.       do
  212.          if current_type /= Void then
  213.         from
  214.            !!Result.make(list.first);
  215.            i := 2;
  216.         until
  217.            i > list.upper
  218.         loop
  219.            Result.add_last(list.item(i));
  220.            i := i + 1;
  221.         end;
  222.             Result := Result.to_runnable(ct);
  223.          else
  224.             current_type := ct;
  225.             from
  226.                i := 1;
  227.             until
  228.                i > list.upper or else nb_errors > 0
  229.             loop
  230.                list.put(list.item(i).to_runnable(ct),i);
  231.                debug
  232.                   if nb_errors = 0 then
  233.                      check
  234.                         list.item(i) /= Void;
  235.                      end;
  236.                   end;
  237.                end;
  238.                i := i + 1;
  239.             end;
  240.             Result := Current;
  241.          end;
  242.       end;
  243.  
  244. feature {IFTHENELSE,IFTHENLIST}
  245.  
  246.    add_last(it: IFTHEN) is
  247.       require
  248.          it /= Void
  249.       do
  250.          list.add_last(it);
  251.       ensure
  252.          count = old count + 1
  253.       end;
  254.  
  255. feature {IFTHENELSE}
  256.  
  257.    compile_to_jvm_resolve_branch is
  258.       local
  259.          i, static: INTEGER;
  260.       do
  261.          from
  262.             i := 1;
  263.             static := non_static;
  264.          until
  265.             static = static_true or else i > list.upper
  266.          loop
  267.             static := list.item(i).compile_to_jvm_resolve_branch;
  268.             i := i + 1;
  269.          end;
  270.       end;
  271.  
  272. invariant
  273.  
  274.    list.lower = 1;
  275.  
  276.    count >= 1;
  277.  
  278. end -- IFTHENLIST
  279.  
  280.